home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / PACKAGES / AWK320.ZIP / HELLO.AWK < prev    next >
Text File  |  1990-02-08  |  93b  |  8 lines

  1. # classic first program
  2. # K&R p6
  3.  
  4. BEGIN {
  5.         print "Hello World!"
  6.         exit
  7. }
  8.